home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / games1 / nfa-hdin.lha / NFA-HDInstallers / AB3D / AB3Dinstall next >
Text File  |  1995-10-14  |  1KB  |  55 lines

  1. (set name
  2.    (askdir
  3.       (prompt "Select the place where you would like the AB3D directory to be created:"
  4.       "(Path must end with : or /)")
  5.       (help "The AB3D directory will be placed in the directory you specify here.")
  6.       (default "Work:")
  7.    )
  8. )
  9.  
  10. (set fullname (cat name "AB3D"))
  11.  
  12. (makedir fullname)
  13.  
  14. (set fullname (cat fullname "/"))
  15.  
  16.  
  17. (textfile
  18.    (prompt "Creating executable script")
  19.    (help "This script file must be executed either from CLI or WorkBench to run the game.")
  20.    (dest (cat fullname "AlienBreed3D"))
  21.    (append (cat "Assign AB3D1: " fullname))
  22.    (append "\n")
  23.    (append (cat "Assign AB3D2: " fullname))
  24.    (append "\n")
  25.    (append (cat "cd " fullname))
  26.    (append "\n")
  27.    (append "abd.pk")
  28.    (append "\n")
  29. )
  30.  
  31. (protect (cat fullname "AlienBreed3D") "+s")
  32.  
  33. (copyfiles
  34.    (prompt "Copying Disk 2 files to %s" fullname)
  35.    (help "The installer is currently copying the files from Disk 2 to %s. There is nothing to fear." name)
  36.    (source "AB3D2:")
  37.    (dest fullname)
  38.    (all)
  39. )
  40.  
  41. (askdisk
  42.    (prompt "Please insert Disk One")
  43.    (help "The installer now needs Disk One to complete the installation.")
  44.    (dest "AB3D1")
  45. )
  46.  
  47. (copyfiles
  48.    (prompt "Copying Disk 1 files to %s" fullname)
  49.    (help "The installer is currently copying the files from Disk 1 to %s. There is nothing to fear." name)
  50.    (source "AB3D1:")
  51.    (dest fullname)
  52.    (all)
  53. )
  54.  
  55.